/* LYBAM GLOBAL - Shared Service Page Stylesheet
   Phase 2 (Core Service Pages). Extracted verbatim from about.html's proven design system
   so every new service page shares one real stylesheet instead of duplicating this CSS
   into each page's source file - single source of truth for nav/section/footer styling,
   per MASTER_EXECUTION_PLAN.md Phase 1 and the Phase 2 "no duplicated CSS" instruction.
   The 5 pre-existing legacy pages (about/catalog/downloads/privacy/terms) keep their own
   embedded copy untouched - they work today and there is no measurable benefit to
   retrofitting them onto this file.
*/
:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-mid: #1a1a1a;
  --gold: #d4a843;
  --gold-light: #f0c84a;
  --gold-dark: #a07c20;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --gray: #888888;
  --gray-light: #e5e7eb;
}
* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--black-soft); color: var(--white); overflow-x: hidden; }
.icon { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.icon-sm { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* UNIVERSAL FOCUS VISIBILITY - one rule covers every link/button/input on every page that
   loads this stylesheet (25 generated pages), current and future, rather than styling
   focus per-component. Component-specific rules (e.g. .gen-card:focus-within) may still
   add a complementary treatment, but this is the real, guaranteed-visible baseline. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* REDUCED MOTION - real user preference, not a strict AA requirement, but respected here
   rather than ignored. Disables the smooth-scroll default above and neutralizes hover/focus
   transitions and the product-carousel fade for anyone who has asked their OS not to animate. */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* SKIP LINK - hidden off-screen until keyboard-focused, then a real, visible, high-contrast
   target above everything else. Must be the very first focusable element in DOM order. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--gold); color: var(--black); font-weight: 800; font-size: 14px;
  padding: 14px 22px; border-radius: 0 0 6px 0; text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* COOKIE / ANALYTICS CONSENT BANNER (Execution Task 002) - hidden via the native `hidden`
   attribute by render_cookie_banner()'s own JS, not by this CSS, so it's removed from the
   accessibility tree (not just visually) until shown. Accept/Reject are deliberately styled
   as equal-weight outlined buttons - same size, same visual prominence - so neither reads as
   the "recommended" choice. Focus visibility comes from the universal a/button:focus-visible
   rule above; no separate rule needed here. */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
  background: var(--black-card); border-top: 1px solid rgba(212,168,67,.3);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.cookie-banner-text {
  font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 720px; flex: 1 1 320px;
}
.cookie-banner-text a { color: var(--gold); }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  font-family: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  padding: 11px 20px; border-radius: 5px; cursor: pointer;
  background: transparent; border: 1.5px solid var(--gold); color: var(--white);
  transition: background .2s;
}
.cookie-btn:hover { background: rgba(212,168,67,.12); }
.cookie-btn-accept, .cookie-btn-reject { background: transparent; border-color: var(--gold); color: var(--white); }
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 18px; flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1 1 0; }
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,.25);
  padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); object-fit: cover; }
.nav-logo-text { font-size: 18px; font-weight: 800; letter-spacing: 2px; color: var(--gold); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: 12px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 10px 22px; border-radius: 4px;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 2; }

/* PAGE HEADER */
#page-header {
  padding: 160px 40px 80px; text-align: center; background: #000;
  position: relative; overflow: hidden; border-bottom: 1px solid rgba(212,168,67,.15);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.9) 100%);
}
.page-header-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(212,168,67,.4); border-radius: 20px;
  padding: 6px 18px; font-size: 11px; letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.page-header-title { font-size: clamp(30px, 5vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.page-header-title span { color: var(--gold); }
.page-header-sub { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* BREADCRUMB - real, visible navigation built from the same data as the page's
   BreadcrumbList schema (see build_breadcrumb_nav_html()) - never just structured data. */
.breadcrumb-nav {
  max-width: 1300px; margin: 0 auto; padding: 18px 60px 0;
  font-size: 12.5px; color: rgba(255,255,255,.45);
}
.breadcrumb-nav a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--gold); text-decoration: underline; }
.breadcrumb-nav [aria-current="page"] { color: var(--gold); font-weight: 600; }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
@media (max-width: 640px) {
  .breadcrumb-nav { padding: 14px 20px 0; font-size: 11.5px; }
}

/* SECTION BASE */
section { padding: 90px 60px; max-width: 1300px; margin: 0 auto; }
.section-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; line-height: 1.1; color: var(--white); }
.section-title span { color: var(--gold); }
.section-sub { font-size: 15px; color: rgba(255,255,255,.5); margin-top: 12px; max-width: 680px; line-height: 1.7; }
.gold-divider { width: 48px; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-dark)); margin: 20px 0; border-radius: 2px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.center .gold-divider { margin-left: auto; margin-right: auto; }

/* AI SUMMARY */
#ai-summary { padding: 48px 60px 0; max-width: 1300px; margin: 0 auto; }
#ai-summary p { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.8; max-width: 820px; border-left: 3px solid var(--gold); padding-left: 20px; }

/* SERVICES / CONTENT BLOCK GRID (reused for "Who It Is For" / "Problems It Solves" etc.) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--black-card); border: 1px solid rgba(212,168,67,.12); border-radius: 14px;
  padding: 30px 26px; transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-card h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.service-card ul { margin-top: 10px; padding-left: 18px; }
.service-card li { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.8; }

/* PROCESS */
.process-list { display: flex; flex-direction: column; margin-top: 48px; }
.process-step { display: flex; gap: 24px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.process-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.process-text p { font-size: 13px; color: rgba(255,255,255,.5); }

/* RISKS / COMMON MISTAKES (honest, specific - a trust signal per Brand Voice guide) */
.risk-list, .mistake-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.risk-item, .mistake-item {
  background: var(--black-card); border-left: 3px solid var(--gold-dark); border-radius: 8px;
  padding: 18px 22px;
}
.risk-item h4, .mistake-item h4 { font-size: 14.5px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.risk-item p, .mistake-item p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* COMPARISON TABLE */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 13.5px; }
.comparison-table th, .comparison-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.comparison-table th { color: var(--gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.comparison-table td { color: rgba(255,255,255,.7); line-height: 1.6; }

/* CHECKLIST */
.checklist { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }
.checklist li::before { content: '\2713'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* NOT-CLAIMED BOX (honest limitation statement - Brand Voice guide Section 5) */
.not-claimed-box {
  margin-top: 40px; padding: 22px 26px; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12);
  font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7;
}
.not-claimed-box strong { color: var(--white); }

/* WHO IT'S FOR / NOT A FIT CHIPS */
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.fit-chip {
  background: var(--black-card); border: 1px solid rgba(212,168,67,.12); border-radius: 10px;
  padding: 18px; text-align: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8);
}
.not-fit-note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.45); max-width: 680px; line-height: 1.7; }

/* FAQ (matches the existing Homepage FAQ pattern exactly) */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.faq-item p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* RELATED LINKS */
.related-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.related-links a {
  font-size: 12.5px; font-weight: 700; color: var(--gold); text-decoration: none;
  border: 1px solid rgba(212,168,67,.3); border-radius: 20px; padding: 9px 18px; transition: background .2s;
}
.related-links a:hover { background: rgba(212,168,67,.08); }
.related-group { margin-top: 32px; }
.related-group:first-of-type { margin-top: 0; }
.related-group-label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.related-group .related-links { margin-top: 0; }

/* CTA */
#cta {
  text-align: center; padding: 90px 60px;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,168,67,.08) 0%, transparent 65%), var(--black-soft);
  border-top: 1px solid rgba(212,168,67,.1); border-bottom: 1px solid rgba(212,168,67,.1);
}
#cta .section-sub { margin: 0 auto 36px; }
#cta .gold-divider { margin: 20px auto; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 16px 40px; border-radius: 5px;
  text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-block;
  box-shadow: 0 4px 24px rgba(212,168,67,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,168,67,.5); }

/* FOOTER */
footer {
  background: #000; border-top: 1px solid rgba(212,168,67,.2);
  padding: 48px 60px 32px; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold); object-fit: cover; }
.footer-logo-text { font-size: 20px; font-weight: 900; letter-spacing: 3px; color: var(--gold); }
.footer-tagline { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-copy span { color: var(--gold); }

/* PHASE 4.5 - ENTITY / KNOWLEDGE SYSTEM */
.direct-answer { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.7; font-weight: 600; max-width: 820px; }
.key-takeaways { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.key-takeaways li { position: relative; padding-left: 26px; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.key-takeaways li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.entity-link { color: var(--gold); text-decoration: underline dotted; text-underline-offset: 3px; }
.entity-link:hover { text-decoration: underline solid; }
.graph-flow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.graph-node { background: var(--black-card); border: 1px solid rgba(212,168,67,.25); border-radius: 20px; padding: 10px 20px; font-size: 13px; font-weight: 700; }
.graph-node.current { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,.1); }
.graph-node a { color: inherit; text-decoration: none; }
.graph-node a:hover { text-decoration: underline; }
.graph-arrow { color: var(--gold); font-size: 18px; }
.entity-index-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.entity-index-card { background: var(--black-card); border: 1px solid rgba(212,168,67,.12); border-radius: 10px; padding: 18px; }
.entity-index-card h3 { font-size: 15px; margin-bottom: 6px; }
.entity-index-card h3 a { color: var(--gold); text-decoration: none; }
.entity-index-card p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
.entity-category-tag { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(212,168,67,.6); margin-bottom: 8px; display: block; }
.entity-view-group { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: .5px; margin: 36px 0 4px; }
.entity-view-group:first-of-type { margin-top: 8px; }
@media (max-width: 900px) {
  .entity-index-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .entity-index-grid { grid-template-columns: 1fr; }
}

/* PHASE 5 - CATEGORY HUB PRODUCT GRID (ported verbatim from index.html so pages using
   generate_homepage_fragment()'s real product-card markup render identically wherever
   it's reused - values are the live homepage's, not a new design) */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.featured-card-body { padding: 16px 18px; }
.featured-card-body h3 { font-size: 13.5px; font-weight: 700; }
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* MANUFACTURER APPLICATION FORM - ported from index.html's proven .contact-form pattern
   (same field styling, same focus treatment) so the manufacturer-side form matches the
   buyer-side form's visual language exactly, extended with a labeled-section divider and
   file-upload styling that the buyer form doesn't need. */
.mfg-form-wrap { background: var(--black-card); border: 1px solid rgba(212,168,67,.15); border-radius: 16px; padding: 36px; margin-top: 44px; max-width: 900px; }
.form-section-label {
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin: 32px 0 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
}
.form-section-label:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.form-section-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { margin-bottom: 18px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { display: block; font-size: 11px; letter-spacing: 1.2px; color: var(--gold); text-transform: uppercase; margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; color: var(--white); font-size: 13.5px; padding: 11px 14px;
  outline: none; transition: border-color .2s, box-shadow .2s; font-family: inherit;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(212,168,67,.45);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select option { background: #111; }
.form-row input[type="file"] { padding: 9px 12px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.form-row input[type="file"]::file-selector-button {
  background: rgba(212,168,67,.15); color: var(--gold); border: 1px solid rgba(212,168,67,.3);
  border-radius: 4px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; margin-right: 12px; cursor: pointer;
}
.radio-group { display: flex; gap: 20px; margin-top: 4px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.75); text-transform: none; letter-spacing: 0; }
.radio-group input { width: auto; }
.form-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 13px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 16px; border: none; border-radius: 6px;
  cursor: pointer; transition: opacity .2s; margin-top: 22px;
}
.form-submit:hover { opacity: .88; }
.form-fineprint { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-fineprint a { color: rgba(255,255,255,.55); }
.form-success { display: none; text-align: center; padding: 40px 20px; font-size: 15px; color: var(--gold); line-height: 1.7; }
@media (max-width: 640px) {
  .mfg-form-wrap { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; width: 100%;
    flex-direction: column; gap: 0; background: rgba(0,0,0,.98);
    border-bottom: 1px solid rgba(212,168,67,.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
  section { padding: 60px 24px; }
  #ai-summary { padding: 40px 24px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 24px 24px; }
  .comparison-table { display: block; overflow-x: auto; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .process-step { gap: 16px; }
}

/* PRINT - real, checked print output (not just "don't crash") for pages meant to be
   printed or saved as PDF (checklists in particular). Strips chrome that has no meaning
   on paper; keeps the actual content, in the page's normal reading order. */
@media print {
  nav, .skip-link, .breadcrumb-nav, #cta, footer, .nav-toggle,
  .gen-carousel-next, .gen-inquiry-btn, .related-links, .related-group { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  section { padding: 16px 0 !important; max-width: 100% !important; }
  .section-title, .direct-answer, h1, h2, h3, h4 { color: #000 !important; }
  .key-takeaways li, .checklist li, .mistake-item p, .section-sub { color: #222 !important; }
  a { color: #000 !important; text-decoration: underline; }
  .checklist li::before, .key-takeaways li::before { color: #000 !important; }
  #page-header { background: #fff !important; padding: 20px 0 !important; }
  .page-header-overlay, .page-header-bg { display: none !important; }
  .page-header-title, .page-header-sub { color: #000 !important; }
}
